go/ast.CallExpr.Rparen (field)
11 uses
go/ast (current package)
ast.go#L392: Rparen token.Pos // position of ")"
ast.go#L543: func (x *CallExpr) End() token.Pos { return x.Rparen + 1 }
go/parser
parser.go#L1633: return &ast.CallExpr{Fun: fun, Lparen: lparen, Args: list, Ellipsis: ellipsis, Rparen: rparen}
parser.go#L2709: Rparen: x.Rparen,
go/printer
nodes.go#L999: if x.Rparen.IsValid() && p.lineFor(x.Ellipsis) < p.lineFor(x.Rparen) {
nodes.go#L1003: p.exprList(x.Lparen, x.Args, depth, commaTerm, x.Rparen, false)
nodes.go#L1005: p.setPos(x.Rparen)
go/types
call.go#L207: check.errorf(inNode(call, call.Rparen), WrongArgCount, "missing argument in conversion to %s", T)
call.go#L527: at = atPos(call.Rparen) // report at closing )
util.go#L47: func argErrPos(call *ast.CallExpr) positioner { return inNode(call, call.Rparen) }